[' david ', ' was ', ' here '].collect(&:strip)
# ["david", "was", "here"]
[' david ', ' was ', ' here ', nil].collect(&:strip)
# NoMethodError: undefined method `strip' for nil:NilClass
# Handle nil values
[' david ', ' was ', ' here ', nil].compact.collect(&:strip)
# ["david", "was", "here"]